home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Overview / TESample / CTESample.make < prev    next >
Encoding:
Text File  |  1994-11-18  |  2.3 KB  |  76 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple TextEdit Sample Application
  5. #
  6. #    TESample
  7. #
  8. #    CTESample.make    -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:
  14. #                1.00                08/88
  15. #                1.01                11/88
  16. #                1.02                04/89
  17. #                1.03                06/89
  18. #                1.04                06/92
  19. #
  20. #    Components:
  21. #                TESample.p            June 1, 1989
  22. #                TESample.c            June 1, 1989
  23. #                TESampleInit.c        June 4, 1992
  24. #                TESampleGlue.a        June 1, 1989
  25. #                TESample.r            June 1, 1989
  26. #                TESample.h            June 1, 1989
  27. #                PTESample.make        June 1, 1989
  28. #                CTESample.make        June 1, 1989
  29. #                TCTESample.π        June 4, 1992
  30. #                TCTESample.π.rsrc    June 4, 1992
  31. #                TCTESampleGlue.c    June 4, 1992
  32. #
  33. #    TESample is an example application that demonstrates how 
  34. #    to initialize the commonly used toolbox managers, operate 
  35. #    successfully under MultiFinder, handle desk accessories and 
  36. #    create, grow, and zoom windows. The fundamental TextEdit 
  37. #    toolbox calls and TextEdit autoscroll are demonstrated. It 
  38. #    also shows how to create and maintain scrollbar controls.
  39. #
  40. #    It does not by any means demonstrate all the techniques you 
  41. #    need for a large application. In particular, Sample does not 
  42. #    cover exception handling, multiple windows/documents, 
  43. #    sophisticated memory management, printing, or undo. All of 
  44. #    these are vital parts of a normal full-sized application.
  45. #
  46. #    This application is an example of the form of a Macintosh 
  47. #    application; it is NOT a template. It is NOT intended to be 
  48. #    used as a foundation for the next world-class, best-selling, 
  49. #    600K application. A stick figure drawing of the human body may 
  50. #    be a good example of the form for a painting, but that does not 
  51. #    mean it should be used as the basis for the next Mona Lisa.
  52. #
  53. #    We recommend that you review this program or Sample before 
  54. #    beginning a new application. Sample is a simple app. which doesn’t 
  55. #    use TextEdit or the Control Manager.
  56. #
  57.  
  58. CObjs    =    TESample.c.o ∂
  59.             TESampleInit.c.o ∂
  60.             TESampleGlue.a.o ∂
  61.             "{Libraries}"Runtime.o ∂
  62.             "{Libraries}"Interface.o
  63.  
  64. CTESample        ƒƒ {CObjs} CTESample.make
  65.         Link -o {Targ} {CObjs}
  66.         SetFile {Targ} -t APPL -c 'MOOT' -a B
  67.  
  68. CTESample        ƒƒ TESample.r TESample.h CTESample.make
  69.         Rez -rd -append -o {Targ} TESample.r
  70.  
  71. TESample.c.o    ƒƒ TESample.c CTESample.make
  72.  
  73. TESampleInit.c.o    ƒƒ TESampleInit.c CTESample.make
  74.  
  75. TESampleGlue.a.o    ƒƒ TESampleGlue.a CTESample.make
  76.